const github.com/klauspost/compress/zstd.maxMatchLen

7 uses

	github.com/klauspost/compress/zstd (current package)
		blockdec.go#L48: 	maxMatchLen  = 131074
		dict.go#L233: 	enc := encoder(&bestFastEncoder{fastBase: fastBase{maxMatchOff: int32(maxMatchLen), bufferReset: math.MaxInt32 - int32(maxMatchLen*2), lowMem: false}})
		dict.go#L237: 			blockSize:  maxMatchLen,
		dict.go#L238: 			windowSize: maxMatchLen,
		enc_best.go#L37: const highScore = maxMatchLen * 8
		seqdec.go#L333: 		if ml > maxMatchLen {